home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 128
/
Vol 128 (Damaged).iso
/
games
/
boiler_b.swf
/
scripts
/
frame_1
/
DoAction.as
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2011-03-26
|
225 b
|
8 lines
Math.distance = function(obj1, obj2)
{
var _loc3_ = Math.abs(obj1.pX - obj2.pX);
var _loc2_ = Math.abs(obj1.pY - obj2.pY);
var _loc1_ = Math.sqrt(Math.pow(_loc3_,2) + Math.pow(_loc2_,2));
return _loc1_;
};